home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / TitlePositionPropertyEditor.java < prev    next >
Text File  |  1998-04-21  |  1KB  |  31 lines

  1. package com.symantec.itools.swing.borders;
  2.  
  3. import com.symantec.itools.beans.*;
  4.  
  5. public final class TitlePositionPropertyEditor
  6.     extends TaggedIntPropertyEditor
  7. {
  8.     private static TaggedInt[] m_Tags = null;
  9.     
  10.     // When the class loads, load the tags
  11.     
  12.     static
  13.     {
  14.         m_Tags = new TaggedInt[]
  15.         { 
  16.             new TaggedInt("ABOVE_TOP", com.sun.java.swing.border.TitledBorder.ABOVE_TOP, "com.sun.java.swing.border.TitledBorder.ABOVE_TOP"),
  17.             new TaggedInt("TOP", com.sun.java.swing.border.TitledBorder.TOP, "com.sun.java.swing.border.TitledBorder.TOP"),
  18.             new TaggedInt("BELOW_TOP", com.sun.java.swing.border.TitledBorder.BELOW_TOP, "com.sun.java.swing.border.TitledBorder.BELOW_TOP"),
  19.             new TaggedInt("ABOVE_BOTTOM", com.sun.java.swing.border.TitledBorder.ABOVE_BOTTOM, "com.sun.java.swing.border.TitledBorder.ABOVE_BOTTOM"),
  20.             new TaggedInt("BOTTOM", com.sun.java.swing.border.TitledBorder.BOTTOM, "com.sun.java.swing.border.TitledBorder.BOTTOM"),
  21.             new TaggedInt("BELOW_BOTTOM", com.sun.java.swing.border.TitledBorder.BELOW_BOTTOM, "com.sun.java.swing.border.TitledBorder.BELOW_BOTTOM"),
  22.             new TaggedInt("DEFAULT_POSITION", com.sun.java.swing.border.TitledBorder.DEFAULT_POSITION, "com.sun.java.swing.border.TitledBorder.DEFAULT_POSITION"),
  23.         };
  24.     }
  25.     
  26.     public TitlePositionPropertyEditor()
  27.     {
  28.         super(m_Tags);
  29.     }
  30. }
  31.